(logo)  AWeb supported HTML

Index

comment
A
ADDRESS
AREA
B
BASE
BASEFONT
BGSOUND
BIG
BLINK
BLOCKQUOTE
BODY
BQ
BR
BUTTON
CAPTION
CENTER
CITE
CODE
COL
COLGROUP
DD
DFN
DIR
DIV
DL
DT
EM
EMBED
FONT
FORM
FRAME
FRAMESET
H1..H6
HEAD
HR
HTML
I
IFRAME
IMG
INPUT
ISINDEX
KBD
LI
LINK
LISTING
MAP
MENU
META
NOBR
NOFRAMES
NOSCRIPT
OBJECT
OL
OPTION
P
PARAM
PRE
S
SAMP
SCRIPT
SELECT
SMALL
STRIKE
STRONG
STYLE
SUB
SUP
TABLE
TBODY
TD
TEXTAREA
TFOOT
TH
THEAD
TITLE
TR
TT
U
UL
VAR
WBR
XMP

Functional overview

Document structure
HTMLHTML document
HEADdocument head
BODYdocument body
FRAMESETwindow subdivision
FRAMEwindow subdivision
NOFRAMESwindow subdivision
commentHTML comments
Text structuring
Hnheadings
DIVdivision
CENTERcentered division
Pparagraphs
BRline break
PREpreformatted text
HRhorizontal rule
Document header
TITLEdocument title
METAmeta information, client pull
LINKrelated resources
STYLEstyle information
Physical text styles
Bbold
BIGlarge font
Iitalics
SMALLsmall font
S, STRIKEstrikethrough
SUBsubscript
SUPsuperscript
TTfixed width
Uunderlined
BASEFONTset base font size
FONTchange font size or colour
BLINKblinking text
NOBRinhibit line breaks
WBRsoft word break
Logical text styles
ADDRESSaddress
BQ, BLOCKQUOTElong quotation
CITEcitation
CODEcode sample
DFNdefinition
EMemphasized
KBDkeyboard input
SAMPsample output
STRONGstrong emphasis
VARvariables
Links and multimedia
Ahypertext link
IMGinlined image
MAPclient-side image map
AREAclient-side image map area
BGSOUNDbackground sound
OBJECTinlined object
PARAMparameters for object
IFRAMEinlined document
EMBEDinlined object
Lists
OLordered (numbered) list
ULunordered list
LIlist item
DIRdirectory list
MENUmenu list
DLdefinition list
DTterm
DDdefinition
Tables
TABLEtable
CAPTIONtable caption
COLcolumn declaration
COLGROUPcolumn declaration
THEADtable subdivision
TFOOTtable subdivision
TBODYtable subdivision
TDtable cell
THtable header cell
TRtable row
Fill-in forms
ISINDEXone-line index form
FORMform
INPUTform field
BUTTONcustom form button
SELECTselection field
OPTIONoption in a selection field
TEXTAREAmulti-line text entry field
JavaScript
SCRIPTscript statements
NOSCRIPTscript alternative

Tags

See one of the following documents for descriptions of all tags:

Event handlers

Many elements can have event handlers defined for them. These contain fragments of JavaScript that is executed when the event occurs. The following event handlers exist, though not all exist for all elements:
Event handlerWhen does it occur
OnAbort Loading of the image is aborted.
OnBlur Element looses keyboard focus. Not all elements support keyboard focus even if this event handler is valid for that element.
OnChange User has changed the element.
OnClick User has clicked on the element.
OnError Image loading errored.
OnFocus Element gets keyboard focus. Not all elements support keyboad focus even if this event handler is valid for that element.
OnLoad The image or document is completely loaded.
OnMouseOut User has moved the mouse away from the element.
OnMouseOver User has moved the mouse on top of the element.
OnReset User has reset the form.
OnSelect User has drag-selected text within the form field. Currently not supported by AWeb.
OnSubmit User has submitted the form.
OnUnload The document is about to be unloaded.

Colour specifications

Several tags (like BODY, FONT and HR) have attributes that take a colour specification. There are two ways of specifying a colour: by RGB value or by name.

By RGB value

This is a six-digit hexadecimal number, preceded by a hash sign (#). The number is interpreted as 2 digits for RED, 2 digits for GREEN and 2 digits for BLUE. 00 means this colour doesn't contribute to the resulting colour, FF means this colour contributes at its maximum.

By name

The HTML 3.2 standard defines 16 colour names. In tolerant mode, AWeb also recognizes a long list of names introduced by NetScape. Look at the colour list to see all colours.


<- Back to index.